Dockerfile 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #-------------------------------------------------------------------------------------------------------------
  2. # Copyright (c) Microsoft Corporation. All rights reserved.
  3. # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
  4. #-------------------------------------------------------------------------------------------------------------
  5. FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14
  6. # The node image includes a non-root user with sudo access. Use the
  7. # "remoteUser" property in devcontainer.json to use it. On Linux, update
  8. # these values to ensure the container user's UID/GID matches your local values.
  9. # See https://aka.ms/vscode-remote/containers/non-root-user for details.
  10. ARG USERNAME=node
  11. ARG USER_UID=1000
  12. ARG USER_GID=$USER_UID
  13. RUN mkdir -p /workspace/growi/node_modules
  14. # [Optional] Update UID/GID if needed
  15. RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then \
  16. groupmod --gid $USER_GID $USERNAME \
  17. && usermod --uid $USER_UID --gid $USER_GID $USERNAME; \
  18. fi
  19. RUN chown -R $USER_UID:$USER_GID /home/$USERNAME /workspace;
  20. # *************************************************************
  21. # * Uncomment this section to use RUN instructions to install *
  22. # * any needed dependencies after executing "apt-get update". *
  23. # * See https://docs.docker.com/engine/reference/builder/#run *
  24. # *************************************************************
  25. # ENV DEBIAN_FRONTEND=noninteractive
  26. # RUN apt-get update \
  27. # && apt-get -y install --no-install-recommends <your-package-list-here> \
  28. # #
  29. # # Clean up
  30. # && apt-get autoremove -y \
  31. # && apt-get clean -y \
  32. # && rm -rf /var/lib/apt/lists/*
  33. # ENV DEBIAN_FRONTEND=dialog
  34. # Uncomment to default to non-root user
  35. # USER $USER_UID