Skip to content
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
4 changes: 2 additions & 2 deletions EB-Follow-Along-Docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# we'll use 10 since its same as Amazon Linux 1 default node version
FROM node:10
FROM node:10-alpine
# where our app will be located in the image
RUN mkdir -p /app
WORKDIR /app
# move all source code
COPY . .
RUN npm install
CMD [ "npm", "start" ]
EXPOSE 8080
EXPOSE 8080