Skip to content

Commit

Permalink
Clean up Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmcd committed Nov 18, 2018
1 parent 4ea44cd commit a682617
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ FROM golang:1.11.2-stretch

RUN apt-get update && \
curl -sL https://deb.nodesource.com/setup_11.x | bash -\
&& apt-get install -y nodejs libssl-dev
&& apt-get install -y --no-install-recommends \
nodejs=11.2.0* \
libssl-dev=1.1.0* \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /go/src/github.com/maxmcd/webtty

Expand Down
2 changes: 1 addition & 1 deletion web-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maxmcd/webtty-node-go as builder
FROM maxmcd/webtty-node-go:latest as builder

COPY . .
RUN go get -v . \
Expand Down
1 change: 0 additions & 1 deletion web-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "webtty",
"version": "0.0.2",
"description": "webtty web client",
"repository": "",
"repository": {
"type": "git",
"url": "git+https://github.com/maxmcd/webtty.git"
Expand Down

0 comments on commit a682617

Please sign in to comment.