scnario commited on
Commit
8a32ccf
·
verified ·
1 Parent(s): 769d42a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -7
Dockerfile CHANGED
@@ -1,12 +1,5 @@
1
  FROM node:latest
2
  WORKDIR /app
3
- RUN apt-get update && \
4
- apt-get upgrade -y && \
5
- apt-get install -y git
6
- ARG GIT_REPO
7
- ENV GIT_REPO=${GIT_REPO}
8
- RUN git clone ${GIT_REPO}
9
- WORKDIR /app/spotify
10
  COPY package*.json ./
11
  RUN npm install
12
  COPY . .
 
1
  FROM node:latest
2
  WORKDIR /app
 
 
 
 
 
 
 
3
  COPY package*.json ./
4
  RUN npm install
5
  COPY . .