Skip to content

Commit

Permalink
Add docker run script
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenpieters committed Dec 17, 2023
1 parent c17a723 commit 33f8788
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Expand Up @@ -6,3 +6,5 @@ RUN apt-get -y install php-cli php-dom

ADD requirements.txt .
RUN pip install -r requirements.txt

WORKDIR /workdir
2 changes: 2 additions & 0 deletions scripts/run_web_server_docker.sh
@@ -0,0 +1,2 @@
docker build -t phpserver:latest .
docker run -p 80:80 -v ${PWD}:/workdir phpserver:latest /workdir/scripts/run_web_server.sh

0 comments on commit 33f8788

Please sign in to comment.