Fix typo
This commit is contained in:
Родитель
788f7fa0e2
Коммит
b1bcb153e6
|
@ -14,7 +14,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM python:2.7-stretch
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.1
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:latest
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM maven:3-jdk-8
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:8
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -44,7 +44,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:lts
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -41,7 +41,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Install eslint
|
||||
&& npm install -g eslint \
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM python:3.6-stretch
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -10,7 +10,7 @@ FROM continuumio/anaconda3
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -13,7 +13,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
ARG TERRAFORM_VERSION=0.11.13
|
||||
ARG TFLINT_VERSION=0.7.5
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -11,7 +11,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
ENV BAZEL_VERSION=0.25.2
|
||||
ENV BAZEL_SHA256=5b9ab8a68c53421256909f79c47bde76a051910217531cbf35ee995448254fa7
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -11,7 +11,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
# Add bin location to path
|
||||
ENV PATH="$PATH":"/root/.pub-cache/bin"
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -7,7 +7,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -12,7 +12,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
# Docker Compose version
|
||||
ARG COMPOSE_VERSION=1.24.0
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -13,7 +13,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
# Docker Compose version
|
||||
ARG COMPOSE_VERSION=1.24.0
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.1
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.1
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:latest
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:latest
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -11,7 +11,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
# Configuring Elm version
|
||||
ARG ELM_VERSION=0.19.0
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM golang:1
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
FROM openjdk:11-jdk
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
FROM tomcat:8.5-jre8
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
FROM openjdk:8-jdk
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:8
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -42,7 +42,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:lts
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -42,7 +42,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:lts
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -42,7 +42,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:lts
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -42,7 +42,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM debian:9
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM perl:5
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM php:7-cli
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM openjdk:8
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
FROM mcr.microsoft.com/powershell
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM ruby:2
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM python:2
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM continuumio/anaconda3
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM continuumio/miniconda3
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -10,7 +10,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM python:3
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM rocker/r-apt:bionic
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -3,7 +3,7 @@ FROM debian:latest
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -3,7 +3,7 @@ FROM debian:latest
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -8,7 +8,7 @@ FROM ruby:2
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
FROM rust:1
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
FROM swift:4
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:8
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -42,7 +42,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -9,7 +9,7 @@ FROM node:lts
|
|||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# The node image comes with a base non-root 'node' user which this Dockerfile
|
||||
# gives sudo access. Hoewver, for Linux, this user's GID/UID must match your local
|
||||
# gives sudo access. However, for Linux, this user's GID/UID must match your local
|
||||
# user UID/GID to avoid permission issues with bind mounts. Update USER_UID / USER_GID
|
||||
# if yours is not 1000. See https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
ARG USER_UID=1000
|
||||
|
@ -42,7 +42,7 @@ RUN apt-get update \
|
|||
# [Optional] Add add sudo support for non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node \
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
&& chmod 0440 /etc/sudoers.d/node \
|
||||
#
|
||||
# Clean up
|
||||
&& apt-get autoremove -y \
|
||||
|
|
|
@ -7,7 +7,7 @@ FROM ubuntu:bionic
|
|||
# Avoid warnings by switching to noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. Hoewver, for Linux,
|
||||
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
|
||||
# this user's GID/UID must match your local user UID/GID to avoid permission issues
|
||||
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
|
||||
# https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
|
|
Загрузка…
Ссылка в новой задаче