Skip to content

Commit

Permalink
Clean up COPY statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan-Pugh committed Jul 18, 2024
1 parent 8f847a7 commit c266aee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions metadata_form/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ FROM python:3.12-slim
WORKDIR /app

RUN mkdir metadata_form
RUN mkdir metadata_form/data

COPY ./requirements.txt /app/requirements.txt
COPY ./requirements.txt requirements.txt

RUN pip3 install --no-cache-dir -r requirements.txt

COPY ./ metadata_form
COPY ./Home.py utils.py metadata_form/
COPY ./data metadata_form/data/

EXPOSE 8501

Expand Down

0 comments on commit c266aee

Please sign in to comment.