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

11 lines
268 B
Text
Raw Normal View History

2021-08-04 21:46:59 -05:00
#Download Python from DockerHub and use it
2021-08-04 20:35:36 -05:00
FROM python:alpine
2021-08-04 21:46:59 -05:00
#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