Bachelorthesis_Code/backend/Dockerfile.prod
cami d5c6aad834
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Updated dockerfile
2021-07-25 00:19:26 +02:00

16 lines
206 B
Docker

FROM python
WORKDIR /app
RUN apt-get -y update && apt-get -y upgrade
COPY requirements.txt .
RUN apt-get -y install sqlite3
RUN pip install -r requirements.txt
COPY /src .
CMD [ "python", "app.py" ]