3lips/script/Dockerfile

11 lines
262 B
Docker
Raw Normal View History

2024-03-10 08:51:58 +00:00
# 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