Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Allen committed Jan 7, 2020
0 parents commit 1e2590b
Show file tree
Hide file tree
Showing 5 changed files with 806 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM debian:9.7-slim

RUN apt-get update \
&& apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sL https://deb.nodesource.com/setup_13.x | bash -

RUN apt-get install -y nodejs
RUN npm install -g yarn

RUN chmod +x *.sh

ENTRYPOINT ["/entrypoint.sh"]
Loading

0 comments on commit 1e2590b

Please sign in to comment.