Dockerfile 173 B

1234567891011
  1. FROM python:3.11.4-slim-bullseye
  2. WORKDIR /getGrassWebUI
  3. COPY requirements.txt requirements.txt
  4. RUN pip3 install -r requirements.txt
  5. COPY . .
  6. CMD [ "python3", "main.py"]