Another CSS3 loading animation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node | |
# Create app directory | |
WORKDIR /usr/src/app | |
# Install app dependencies | |
# A wildcard is used to ensure both package.json AND package-lock.json are copied | |
# where available (npm@5+) | |
COPY package*.json ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
mkdir $1 | |
echo '# This file must be used with "source activate" or ". activate" | |
function deactivate() { | |
if [ -n "$GOENVNAME" ]; then | |
unset GOENVNAME | |
fi | |
if [ -n "$_OLD_GOROOT" ]; then | |
export GOROOT="$_OLD_GOROOT" | |
unset _OLD_GOROOT |