forked from answerdigital/AnswerKing-Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
Latest commit
14 lines (10 loc) · 282 Bytes
/
Copy pathDockerfile
File metadata and controls
14 lines (10 loc) · 282 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# syntax=docker/dockerfile:1
FROM python:3.10.8-buster
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
COPY . /AnswerKing-Python
WORKDIR /AnswerKing-Python
RUN pip install poetry
RUN poetry install --only main
RUN pip install make
CMD [ "/usr/bin/make", "dockerRunserver"]