diff --git a/Dockerfile b/Dockerfile index 2636664..d0dc775 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,9 @@ MAINTAINER Nathan LeClaire ADD . /app WORKDIR /app -RUN apt-get update && apt-get upgrade +RUN apt-get update && apt-get upgrade -y RUN npm install EXPOSE 3000 -ENTRYPOINT ["node"] -CMD ["app.js"] +CMD node app.js diff --git a/docker-compose.yml b/docker-compose.yml index 9ff2a62..c3ca5f1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,6 @@ version: "3" services: wetty: - image: node:boron container_name: wetty build: . tty: true