We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32fecca commit 5d092f3Copy full SHA for 5d092f3
Dockerfile
@@ -4,11 +4,6 @@ MAINTAINER Ludovic Vannoorenberghe <[email protected]>
4
5
RUN apt-get update && apt-get install -y python build-essential
6
7
-# aws env
8
-RUN curl -o /tmp/aws-env-linux-amd64 -L https://github.com/datacamp/aws-env/releases/download/v0.1-session-fix/aws-env-linux-amd64 && \
9
- chmod +x /tmp/aws-env-linux-amd64 && \
10
- mv /tmp/aws-env-linux-amd64 /bin/aws-env
11
-
12
RUN npm install -g pm2 node-gyp sails grunt bower jake npm-check-updates
13
14
ENV NODE_ENV production
@@ -25,6 +20,6 @@ WORKDIR /opt/app
25
20
ADD . /opt/app
26
21
27
22
#Expose port
28
-EXPOSE 1337
23
+EXPOSE 3000
29
24
30
-CMD bash -c "eval $(aws-env) && npm start"
+CMD bash -c "npm start"
0 commit comments