Skip to content

Commit

Permalink
fix: Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
emresudo committed Jan 2, 2024
1 parent d706f5f commit dcbdb85
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ FROM node:alpine

LABEL org.opencontainers.image.source https://github.com/emresudo/ftp-over-http

WORKDIR /ftp
COPY . /ftp
WORKDIR /home/node/ftp-over-ssh
COPY . /home/node/ftp-over-ssh

RUN npm install --production
RUN npm install

EXPOSE 4000

CMD [ "npm", "start"]

0 comments on commit dcbdb85

Please sign in to comment.