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