Skip to content

Commit

Permalink
GZ 2 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardoZA committed May 9, 2024
1 parent 46860ac commit cc4e49b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM fedora:39
MAINTAINER Gerardo Zapata [email protected]

RUN mkdir /app
WORKDIR /app

# Download python
RUN dnf install -y python3.10
RUN dnf install -y python3-pip
COPY requirements.txt .
RUN python3 -m pip install --no-cache-dir --upgrade -r requirements.txt

# Copy the app
COPY PARPAL.py .

RUN chmod 755 PARPAL.py

## from project_tracking
EXPOSE 8000

# Run app on port 8080
ENTRYPOINT ["uvicorn", "PARPAL:app", "--host", "0.0.0.0", "--port", "8000"]

0 comments on commit cc4e49b

Please sign in to comment.