14 lines
152 B
Docker
14 lines
152 B
Docker
FROM python:latest
|
|
|
|
RUN pip install \
|
|
poetry
|
|
|
|
WORKDIR /usr/src/
|
|
|
|
COPY . /usr/src/
|
|
|
|
RUN poetry install
|
|
|
|
# Set the default command to bash.
|
|
CMD ["bash"]
|