1
0
Fork 0
mirror of https://github.com/fastogt/fastocloud_admin.git synced 2025-03-09 23:38:52 +00:00
fastocloud_admin/Dockerfile
2020-02-08 22:27:17 -05:00

12 lines
222 B
Docker

FROM python:3
LABEL maintainer="Alexandr Topilski <support@fastogt.com>"
COPY . /app
COPY docker/db_config.py /app/app/config/
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8081
CMD [ "python", "server.py" ]