From 50d984d7fb5682768e2993e07ee1dc80325698ab Mon Sep 17 00:00:00 2001 From: K mehant Date: Sat, 1 Jun 2019 16:08:29 +0530 Subject: [PATCH 1/2] Added devcontainer for animate.css --- .../animate.css/.devcontainer/Dockerfile | 17 +++++++++++++++++ .../animate.css/.devcontainer/devcontainer.json | 9 +++++++++ 2 files changed, 26 insertions(+) create mode 100644 repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile create mode 100644 repository-containers/github.com/daneden/animate.css/.devcontainer/devcontainer.json diff --git a/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile b/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile new file mode 100644 index 0000000000..a8da905324 --- /dev/null +++ b/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile @@ -0,0 +1,17 @@ +#------------------------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. +#------------------------------------------------------------------------------------------------------------- + +FROM node:10 + +# Install git, process tools +RUN apt-get update && apt-get -y install git procps + +# Install animate.css via npm +RUN npm install animate.css --save + +# Clean up +RUN apt-get autoremove -y \ + && apt-get clean -y \ + && rm -rf /var/lib/apt/lists/* diff --git a/repository-containers/github.com/daneden/animate.css/.devcontainer/devcontainer.json b/repository-containers/github.com/daneden/animate.css/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..5e5e032670 --- /dev/null +++ b/repository-containers/github.com/daneden/animate.css/.devcontainer/devcontainer.json @@ -0,0 +1,9 @@ +{ + "name": "Animate.css", + "dockerFile": "Dockerfile", + + "extensions": [ + "mrmlnc.vscode-scss", + "zignd.html-css-class-com" + ] +} \ No newline at end of file From 78329cd464499c08d4185526955c6a889acf152c Mon Sep 17 00:00:00 2001 From: K mehant Date: Sat, 1 Jun 2019 18:14:01 +0530 Subject: [PATCH 2/2] Updated Dockerfile adding yarn option --- .../github.com/daneden/animate.css/.devcontainer/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile b/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile index a8da905324..acdc443c96 100644 --- a/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile +++ b/repository-containers/github.com/daneden/animate.css/.devcontainer/Dockerfile @@ -11,6 +11,9 @@ RUN apt-get update && apt-get -y install git procps # Install animate.css via npm RUN npm install animate.css --save +# Uncomment to install animate.css via yarn +# RUN yarn add animate.css + # Clean up RUN apt-get autoremove -y \ && apt-get clean -y \