Files
node/.devcontainer/Dockerfile

38 lines
1.8 KiB
Docker
Raw Normal View History

2019-06-20 23:30:08 +00:00
#-------------------------------------------------------------------------------------------------------------
2019-04-16 19:41:33 -07:00
# Copyright (c) Microsoft Corporation. All rights reserved.
2019-06-20 23:30:08 +00:00
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
2019-04-16 19:41:33 -07:00
2020-04-16 10:19:48 -07:00
# To fully customize the contents of this image, use the following Dockerfile instead:
# https://github.com/microsoft/vscode-dev-containers/tree/v0.112.0/containers/javascript-node-12/.devcontainer/Dockerfile
2020-01-21 23:00:21 +00:00
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-12
2019-04-16 19:41:33 -07:00
2020-04-02 10:50:28 +02:00
# The image referenced above includes a non-root user with sudo access. Add
# the "remoteUser" property to devcontainer.json to use it. On Linux, the container
2020-01-16 16:42:20 -08:00
# user's GID/UIDs will be updated to match your local UID/GID when using the image
# or dockerFile property. Update USER_UID/USER_GID below if you are using the
# dockerComposeFile property or want the image itself to start with different ID
# values. See https://aka.ms/vscode-remote/containers/non-root-user for details.
ARG USER_UID=1000
ARG USER_GID=$USER_UID
ARG USERNAME=node
# [Optional] Update UID/GID if needed
RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then \
2020-01-16 16:45:58 -08:00
groupmod --gid $USER_GID $USERNAME \
2020-01-16 16:42:20 -08:00
&& usermod --uid $USER_UID --gid $USER_GID $USERNAME \
&& chown -R $USER_UID:$USER_GID /home/$USERNAME; \
fi
2020-01-16 16:42:20 -08:00
2020-04-09 00:42:27 +00:00
# ** [Optional] Uncomment this section to install additional packages. **
#
2020-01-17 00:38:05 +00:00
# ENV DEBIAN_FRONTEND=noninteractive
# RUN apt-get update \
2020-04-02 10:50:28 +02:00
# && apt-get -y install --no-install-recommends <your-package-list-here> \
2020-01-17 00:38:05 +00:00
# #
# # Clean up
# && apt-get autoremove -y \
# && apt-get clean -y \
# && rm -rf /var/lib/apt/lists/*
# ENV DEBIAN_FRONTEND=dialog