Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
fixup! feat(github-actions): build webapp image
Browse files Browse the repository at this point in the history
  • Loading branch information
fczuardi committed Jan 11, 2024
1 parent 2a14d63 commit 1ff020e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ WORKDIR /app
COPY src /app/src
COPY vendor /app/vendor
COPY justfile /app/justfile
COPY run_tests.sh /app/run_tests.sh
COPY requirements.txt /app/requirements.txt
COPY LICENSE /app/LICENSE
RUN pip install --no-cache-dir --no-dependencies -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion webapp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN printf ":-)\n\nBuilded on $(date) by:$(hostname)" > results/smile.txt

# Copy the shell script that runs desired tests outputing to results folder
# this script will be executed by an external scheduler periodically
COPY run_tests.sh
COPY run_tests.sh /app/run_tests.sh

# Expose port 5000
EXPOSE 5000
Expand Down

0 comments on commit 1ff020e

Please sign in to comment.