Skip to content
Snippets Groups Projects
Commit f16a6e53 authored by Andri Joos's avatar Andri Joos 😊
Browse files

add Dockerfile

parents
No related merge requests found
FROM mcr.microsoft.com/dotnet/sdk:8.0
ARG USERNAME="vscode"
ARG USER_UID="1000"
ARG USER_GID=${USER_UID}
ARG WORKSPACE="/workdir"
RUN groupadd --gid ${USER_GID} ${USERNAME} \
&& useradd --uid ${USER_UID} --gid ${USER_GID} -m ${USERNAME} \
&& mkdir -p ${WORKSPACE}
USER $USERNAME
WORKDIR ${WORKSPACE}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment