Compare commits

..

3 Commits

Author SHA1 Message Date
d46aaa0f31 Merge pull request 'Fix Dockerfile' (!89) from fix-dockerfile into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #89
2024-04-23 23:07:43 +02:00
81dcf5ebe7
Try to build Docker image for Pull Requests
All checks were successful
continuous-integration/drone/pr Build is passing
2024-04-23 22:48:01 +02:00
7433d25716
Add missing trailing slash 2024-04-23 22:47:54 +02:00
2 changed files with 8 additions and 1 deletions

View File

@ -21,6 +21,13 @@ steps:
commands: commands:
- npm ci - npm ci
- npm run lint - npm run lint
- name: docker-build
image: plugins/docker
settings:
registry: git.wtf-eg.de
repo: git.wtf-eg.de/kompetenzinventar/frontend
target: ki-frontend
dry_run: true
--- ---
kind: pipeline kind: pipeline

View File

@ -4,7 +4,7 @@
FROM node:14-alpine as builder FROM node:14-alpine as builder
COPY package.json package-lock.json . COPY package.json package-lock.json ./
RUN npm install RUN npm install
COPY .eslintrc.js . COPY .eslintrc.js .