mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
13 lines
343 B
Docker
13 lines
343 B
Docker
FROM cypress/included:15.12.0
|
|
ARG USER_UID=1000
|
|
ARG USER_GID=1000
|
|
|
|
WORKDIR /overleaf
|
|
|
|
RUN sed -i s/node:x:1000:/node:x:${USER_GID}:/ /etc/group \
|
|
&& sed -i s_node:x:1000:1000::/home/node:/bin/bash_node:x:${USER_UID}:${USER_GID}::/home/node:/bin/bash_ /etc/passwd \
|
|
&& chown -R node:node /home/node \
|
|
&& chown node:node /overleaf
|
|
|
|
USER node
|