Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 30284b4

Browse files
committed
Install eslint
1 parent d1b998a commit 30284b4

File tree

2 files changed

+8
-2
lines changed
  • containers

2 files changed

+8
-2
lines changed

containers/azure-functions-node-8/.devcontainer/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ RUN echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $(lsb
2525
&& curl -sL https://packages.microsoft.com/keys/microsoft.asc | (OUT=$(apt-key add - 2>&1) || echo $OUT) \
2626
&& apt-get update \
2727
&& apt-get install -y azure-cli dotnet-sdk-2.1 azure-functions-core-tools
28-
28+
29+
# Install eslint
30+
RUN npm install -g eslint
31+
2932
# Clean up
3033
RUN apt-get autoremove -y \
3134
&& apt-get clean -y \

containers/azure-functions-node-lts/.devcontainer/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ RUN echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $(lsb
2525
&& curl -sL https://packages.microsoft.com/keys/microsoft.asc | (OUT=$(apt-key add - 2>&1) || echo $OUT) \
2626
&& apt-get update \
2727
&& apt-get install -y azure-cli dotnet-sdk-2.1 azure-functions-core-tools
28-
28+
29+
# Install eslint
30+
RUN npm install -g eslint
31+
2932
# Clean up
3033
RUN apt-get autoremove -y \
3134
&& apt-get clean -y \

0 commit comments

Comments
 (0)