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

Added devcontainer for animate.css #62

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#-------------------------------------------------------------------------------------------------------------
# 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

# Uncomment to install animate.css via yarn
# RUN yarn add animate.css

# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Animate.css",
"dockerFile": "Dockerfile",

"extensions": [
"mrmlnc.vscode-scss",
"zignd.html-css-class-com"
]
}