Created
January 3, 2021 05:00
-
-
Save ddimick/d0e82da4805775bb12f2995b20fa223a to your computer and use it in GitHub Desktop.
Revisions
-
ddimick created this gist
Jan 3, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ FROM node:current-alpine EXPOSE 1234 WORKDIR /home/node/app RUN apk --no-cache add git \ && chown node:node /home/node/app USER node RUN git clone https://github.com/govizlora/optical-breacher.git . \ && yarn install ENTRYPOINT [ "sh", "-c", "yarn start" ]