Skip to content

Commit

Permalink
Merge pull request #2 from jaymedina/patch-1
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
vpchung authored May 6, 2024
2 parents f392366 + f67f917 commit 2d83ed1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
FROM python:3.11.9-slim-bullseye
FROM ubuntu:22.04

WORKDIR /usr/local/bin

COPY requirements.txt .

RUN apt-get update -y && apt-get upgrade -y && apt-get install -y \
python3 \
python3-pip

RUN pip install -r requirements.txt

COPY validate.py .
Expand Down

0 comments on commit 2d83ed1

Please sign in to comment.