Dockerfile

This commit is contained in:
2022-11-13 18:54:51 +03:00
parent 9682c67bc4
commit 309f5135c9
3 changed files with 24 additions and 6 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM alpine:3.16.3
RUN apk update && apk add py-pip make
COPY . /app
RUN cd /app && make prepare && make build
CMD [ "/app/docker-entry.sh" ]
EXPOSE 8000