3lips/script/Dockerfile
2024-03-10 08:51:58 +00:00

10 lines
262 B
Docker

# use an official Python runtime as a parent image
FROM python:3.9-slim
# set the working directory to /app
WORKDIR /app
# install any needed packages specified in requirements.txt
COPY requirements.txt /app
RUN pip install --no-cache-dir -r requirements.txt