ThalamOS
a powerful Flask web application designed to enhance your storage management.
Loading...
Searching...
No Matches
dockerfile
Go to the documentation of this file.
1
FROM python:3.11-alpine
2
3
WORKDIR /app
4
COPY pyproject.toml /app/
5
COPY poetry.lock /app/
6
RUN pip install poetry && poetry install --no-root
7
COPY ./app /app
8
EXPOSE 8000
9
CMD poetry run gunicorn --bind 0.0.0.0:8000 app:app
dockerfile
Generated by
1.13.2