volga_ctf_2022/services/myblog/api_server/Dockerfile

18 lines
292 B
Text
Raw Permalink Normal View History

2023-01-15 13:53:21 +03:00
FROM python:3-slim
RUN useradd -ms /bin/bash volgactf
RUN pip install --no-cache-dir quart nanoid requests flask_sqlalchemy aiohttp psycopg2-binary quart-cors
WORKDIR /home/volgactf/dist
COPY . ./
RUN chown -R volgactf:volgactf /home/volgactf/dist
USER volgactf
CMD python routes.py