Skip to content
Snippets Groups Projects

Create new integration-test setup

Merged Neil-Jocelyn Schark requested to merge 329-create-new-test-concept-and-set-up into master
Compare and
17 files
+ 304
74
Compare changes
  • Side-by-side
  • Inline
Files
17
+ 2
3
# The devcontainer will be based on Python
# The devcontainer will be based on debian
# The base container already has entrypoint, vscode user account, etc. out of the box
# The base container already has entrypoint, vscode user account, etc. out of the box
FROM mcr.microsoft.com/vscode/devcontainers/base:bullseye
FROM mcr.microsoft.com/vscode/devcontainers/base:bullseye
@@ -6,8 +6,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:bullseye
@@ -6,8 +6,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:bullseye
ARG _CLAB_VERSION
ARG _CLAB_VERSION
# Set permissions for mounts in devcontainer.json
# Set permissions for mounts in devcontainer.json
RUN mkdir /home/vscode/.vscode-server/
RUN mkdir -p /home/vscode/.vscode-server/bin
RUN mkdir /home/vscode/.vscode-server/bin
RUN chown -R vscode:vscode /home/vscode/.vscode-server
RUN chown -R vscode:vscode /home/vscode/.vscode-server
# Update and install some basic tools inside the container
# Update and install some basic tools inside the container
Loading