mirror of
https://github.com/fastogt/fastocloud_admin.git
synced 2025-03-09 23:38:52 +00:00
12 lines
222 B
Docker
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" ]
|