First version of the interface #1

Merged
alexandre merged 10 commits from base into master 2021-11-29 05:41:53 +01:00
2 changed files with 3 additions and 6 deletions
Showing only changes of commit 12b62bbd97 - Show all commits

View File

@@ -2,3 +2,4 @@
.git/ .git/
Dockerfile Dockerfile
__pycache__/* __pycache__/*
drone.yml

View File

@@ -1,13 +1,9 @@
FROM python:3.9-alpine FROM python:3.9-alpine
COPY requirements.txt / COPY . /
RUN pip3 install -r /requirements.txt RUN pip3 install -r /requirements.txt
COPY ./app/ /app
WORKDIR /app
EXPOSE 80/tcp EXPOSE 80/tcp
ENTRYPOINT ["./entrypoint.sh"] ENTRYPOINT ["./entrypoint.sh"]