Skip to content

Commit 604983c

Browse files
committed
update Dockerfile and docker command in pipeline to point to Dockerfile path
Signed-off-by: Mbaoma <[email protected]>
1 parent c9d5f3f commit 604983c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Build the Docker image
18-
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
18+
run: docker build . --file ../../docker/backend/Dockerfile --tag my-image-name:$(date +%s)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ git remote add upstream https://github.com/chaoss/augur.git
8282
```
8383
Whenever you need to make changes, make sure your ```main``` branch is in sync with the main repository, by checking out to the ```main``` branch and running:
8484
```
85-
git pull upstream master
85+
git pull upstream main
8686
git push origin master
8787
```
8888

docker/backend/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MIT
2-
FROM python:3.12-bookworm
2+
FROM python:3.11-slim-bullseye
33

44
LABEL maintainer="[email protected]"
55
LABEL version="0.76.1"
@@ -27,6 +27,7 @@ RUN set -x \
2727
rustc \
2828
cargo \
2929
chromium \
30+
tar \
3031
chromium-driver \
3132
&& apt-get clean \
3233
&& rm -rf /var/lib/apt/lists/* \

0 commit comments

Comments
 (0)