Skip to content
Snippets Groups Projects
Commit 797ea910 authored by David Trattnig's avatar David Trattnig
Browse files

Change workdir.

parent 30743205
No related branches found
No related tags found
No related merge requests found
FROM python:3.7-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN mkdir -p /srv
WORKDIR /srv
COPY requirements.txt /usr/src/app/
COPY requirements.txt /srv
RUN pip install --no-cache-dir -r requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . /usr/src/app
COPY . /srv
EXPOSE 8008
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment