Skip to content

Commit

Permalink
fix: paths
Browse files Browse the repository at this point in the history
  • Loading branch information
maxprilutskiy committed Sep 2, 2024
1 parent 0216f9d commit 3dccbe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM node:20.12.2-alpine

# Set working directory
WORKDIR /usr/src/app
WORKDIR /

# Copy necessary files
COPY package*.json index.mjs entrypoint.sh ./
COPY package*.json index.mjs entrypoint.sh /

# Install pnpm and dependencies
RUN npm install -g pnpm && pnpm install

# Make entrypoint.sh executable and set as entrypoint
RUN chmod +x entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 3dccbe1

Please sign in to comment.