This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
powerpanel-webview/Dockerfile
2021-08-05 02:46:59 +00:00

11 lines
No EOL
268 B
Docker

#Download Python from DockerHub and use it
FROM python:alpine
#Set the working directory in the Docker container
WORKDIR /code
#Copy the dependencies file to the working directory
COPY requirements.txt .
#Install the dependencies
RUN pip install -r requirements.txt