frc_timecards/Dockerfile

16 lines
192 B
Docker
Raw Normal View History

2024-10-03 22:05:46 -04:00
FROM alpine:latest
RUN apk add python3 py3-pip
WORKDIR /app
ADD requirements.txt .
RUN python3 -m pip install -r requirements.txt
COPY . /app
ENTRYPOINT [ "python3" ]
CMD [ "main.py" ]