1
0
Fork 0
mirror of https://github.com/fastogt/fastocloud_admin.git synced 2025-03-09 23:38:52 +00:00

Docker file

This commit is contained in:
topilski 2019-06-06 11:52:02 -04:00
parent f72ea5dd43
commit 72c525a844

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3
LABEL maintainer="FastoGT Maintainers <support@fastogt.com>"
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8080
CMD [ "python", "server.py" ]