Dockerfile 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. RUN mkdir -p /workspace/growi/packages/app/node_modules
  15. RUN mkdir -p /workspace/growi/packages/slackbot-proxy/node_modules
  16. # [Optional] Update UID/GID if needed
  17. RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then \
  18. groupmod --gid $USER_GID $USERNAME \
  19. && usermod --uid $USER_UID --gid $USER_GID $USERNAME; \
  20. fi
  21. RUN chown -R $USER_UID:$USER_GID /home/$USERNAME /workspace;
  22. # *************************************************************
  23. # * Uncomment this section to use RUN instructions to install *
  24. # * any needed dependencies after executing "apt-get update". *
  25. # * See https://docs.docker.com/engine/reference/builder/#run *
  26. # *************************************************************
  27. ENV DEBIAN_FRONTEND=noninteractive
  28. RUN apt-get update \
  29. && apt-get -y install --no-install-recommends git-lfs \
  30. # for Cypress
  31. libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb fonts-noto-cjk \
  32. # Clean up
  33. && apt-get autoremove -y \
  34. && apt-get clean -y \
  35. && rm -rf /var/lib/apt/lists/*
  36. ENV DEBIAN_FRONTEND=dialog
  37. # Uncomment to default to non-root user
  38. # USER $USER_UID