Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

First prod push #1

Merged
merged 10 commits into from
Aug 2, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing working directory
  • Loading branch information
Vikas Agarwal committed Aug 2, 2021
commit 5a6b7f5972b4b3ff8f48e892910468e20a59c79a
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
FROM node:12

# Set working directory for future use
WORKDIR /skills_api
WORKDIR /usr/src/app

# Copy the current directory into the Docker image
COPY . /skills_api
COPY . /usr/src/app

# Install the dependencies from package.json
RUN npm install
Expand Down