Skip to content

Commit 066054f

Browse files
version bump.
1 parent dedd9e5 commit 066054f

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

src/devcontainers/base/.devcontainer/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ LABEL org.opencontainers.image.vendor="NHS England"
66
LABEL org.opencontainers.image.licenses=MIT
77
LABEL org.opencontainers.image.title="NHS Digital Notify Base Dev Container"
88
LABEL org.opencontainers.image.description="Base Dev Container for NHS Digital Notify development environments"
9+
10+
11+
COPY scripts /usr/local/share/nhsnotify-base
12+
13+
WORKDIR /usr/local/share/nhsnotify-base
14+
RUN ./install.sh

src/features/nhsnotify/configure-apt.sh renamed to src/devcontainers/base/.devcontainer/scripts/configure-apt.sh

File renamed without changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
echo "Starting NHS Notify base container installation script"
4+
5+
echo "Configuring APT packages"
6+
./configure-apt.sh
7+
echo "APT packages configured"
8+
9+
echo "Finished NHS Notify base container installation script"

src/features/nhsnotify/packages.txt renamed to src/devcontainers/base/.devcontainer/scripts/packages.txt

File renamed without changes.

src/features/nhsnotify/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"name": "NHS Notify",
5050
"postCreateCommand": "zsh /usr/local/share/nhsnotify/scripts/postcreatecommand.sh",
5151
"postStartCommand": "zsh /usr/local/share/nhsnotify/scripts/poststartcommand.sh",
52-
"version": "1.0.5",
52+
"version": "1.0.6",
5353
"customizations": {
5454
"vscode": {
5555
"extensions": [

src/features/nhsnotify/install.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ echo "Setup share dir, contents:"
1818
pwd $SHARE_DIR
1919
ls -la $SHARE_DIR
2020

21-
echo "Configuring APT packages"
22-
./configure-apt.sh
23-
echo "APT packages configured"
24-
2521
echo "go is at $(which go)"
2622
echo 'install asdf via go'
2723
go install github.com/asdf-vm/asdf/cmd/[email protected]

0 commit comments

Comments
 (0)