Skip to content

Commit

Permalink
bats
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Murray committed Jul 11, 2024
1 parent 6e10e81 commit 08d3155
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
FROM mcr.microsoft.com/devcontainers/python:1-3.12-bookworm
FROM bats/bats:1.11.0

RUN \
apk add --update --no-cache \
curl \
git \
sudo \
&& \
rm -rf /var/cache/apk/*

COPY install-dependencies.sh /tmp

RUN \
sh /tmp/install-dependencies.sh

RUN \
adduser -D vscode

USER vscode

0 comments on commit 08d3155

Please sign in to comment.