Skip to content

Commit

Permalink
add: Dockerfile for "old style" deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
BeritJanssen committed Mar 5, 2024
1 parent c027dc7 commit 47ac3ad
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/DockerfileLegacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Builder image
FROM docker.io/node:18-alpine as builder

RUN yarn set version stable
WORKDIR /client
COPY package.json /client/
COPY yarn.lock /client/
COPY jsconfig.json /client/
RUN yarn
COPY . /client/

0 comments on commit 47ac3ad

Please sign in to comment.