diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4fa867a..b97d329 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,4 +1,7 @@ { - "name": "Your Dev Container", - "image": "docker.io/benjaminluohc/file_processing_tools:latest" -} + "name": "My Container", + "build": { + "context": "..", + "dockerfile": "../Dockerfile" + } +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index cae4fe6..d0e2328 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,3 @@ RUN apt-get update && apt-get install -y \ git RUN pip install git+https://github.com/hc-sc-ocdo-bdpd/file-processing-tools.git - - diff --git a/README.md b/README.md index 3769905..15d97e6 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,7 @@ If step 2 does not work, then try after replacing the code in `.devcontainer/dev ```json { - "name": "My Container", - "build": { - "context": "..", - "dockerfile": "../Dockerfile" - } + "name": "Your Dev Container", + "image": "docker.io/benjaminluohc/file_processing_tools:latest" } ```