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
2019-08-22 07:16:08 -04: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 8080
CMD [ "python", "server.py" ]