Skip to content
Snippets Groups Projects
Commit a286ca46 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

add Dockerfile

parents
No related branches found
No related tags found
No related merge requests found
FROM registry.gitlab.com/islandoftex/images/texlive:latest
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