Skip to content

Commit

Permalink
fix: change copy to global copy
Browse files Browse the repository at this point in the history
  • Loading branch information
prototypicalpro committed Dec 9, 2020
1 parent e15c5fa commit b72376e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ RUN python -m pip install --upgrade pip && \
FROM node:lts-slim

# Copy Ruby dependencies
COPY --from=ruby-deps . .
COPY --from=python-deps . .
COPY --from=ruby-deps / /
COPY --from=python-deps / /

# Install node_modules
COPY package*.json ./
RUN npm install --production

# move the rest of the project over
COPY dist dist
COPY dist ./

ENTRYPOINT ["bundle", "exec", "node", "dist/index.js"]
ENTRYPOINT ["bundle", "exec", "node", "index.js"]

0 comments on commit b72376e

Please sign in to comment.