USAMTS Checker App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
187 B

10 months ago
  1. FROM python:latest
  2. WORKDIR /app
  3. COPY ./requirements.txt /app/
  4. EXPOSE 8000
  5. RUN pip install -r requirements.txt
  6. COPY . /app
  7. CMD ["gunicorn", "app:app", "-w", "3", "-b", "0.0.0.0:8000"]