Remove dev Dockerfile

- Service removed in docker-compose
master
Raymonzut 4 years ago
parent 8165d9fea7
commit b9c54d9470
No known key found for this signature in database
GPG Key ID: 97CF2D8BE2C69FC7
  1. 8
      docker-compose.yml
  2. 23
      docker/dev/Dockerfile

@ -1,11 +1,3 @@
version: '3'
services:
website-dev:
build:
context: ./
dockerfile: docker/dev/Dockerfile
volumes:
- ./client/src:/var/www/app
ports:
- 8080:8080

@ -1,23 +0,0 @@
FROM node:lts-alpine
# where the files live
WORKDIR /app
# get the sauce
COPY /client/src/ /app/src/
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# make sure the packages are the same
COPY /client/package-lock.json /app/package.json
# install and cache app dependencies
COPY /client/package.json /app/package.json
RUN npm install
# start app
CMD ["npm", "run", "serve"]
# allow to be peeked inside
EXPOSE 8080
Loading…
Cancel
Save