mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 10:34:20 +01:00
11 lines
370 B
Docker
11 lines
370 B
Docker
FROM python:3.9-slim
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl python3-dev autoconf g++
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --no-dev --no-root
|
|
EXPOSE 3338
|
|
CMD ["poetry", "run", "mint", "--port", "3338", "--host", "0.0.0.0"] |