Skip to content

Commit

Permalink
Added Dockerfile & .dockerignore
Browse files Browse the repository at this point in the history
Imported from lblod/frontend-burgernabije-besluitendatabank
  • Loading branch information
Denperidge committed Sep 27, 2023
1 parent db12ca0 commit 297e694
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM madnificent/ember:4.9.2 as builder

LABEL maintainer="cat@redpencil.io"

WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN ember build -prod

FROM semtech/static-file-service:0.2.0
COPY --from=builder /app/dist /data

0 comments on commit 297e694

Please sign in to comment.