Skip to content
This repository was archived by the owner on Oct 17, 2019. It is now read-only.
Open
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
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Bases the image on Ubuntu 16.04 (since 18.04 is still not available)
FROM ubuntu:16.04

# Basic update/upgrade mechanism + installs necessary packages
RUN apt update && \
apt upgrade -y && \
apt install apt-transport-https ca-certificates nodejs npm -y

# Install Bower & Grunt using npm
RUN npm install -g bower grunt-cli

# Defines the default work directory
WORKDIR /data

# Copies AMI files to the desired directory
COPY . /data

# Defines the default command to be run once container is up and running.
# It will probably make sense to have "run.sh" which will actually define these.
CMD ["nodejs", "-v"]