Merge pull request #93 from sysadminsmedia/fix/dockerbuild

Rectify Docker build errors due to broken imports
This commit is contained in:
Katos
2024-07-07 16:18:51 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Build Nuxt
FROM node:18-alpine as frontend-builder
FROM node:18-alpine AS frontend-builder
WORKDIR /app
RUN npm install -g pnpm
COPY frontend/package.json frontend/pnpm-lock.yaml ./

View File

@@ -1,6 +1,6 @@
# Build Nuxt
FROM node:18-alpine as frontend-builder
FROM node:18-alpine AS frontend-builder
WORKDIR /app
RUN npm install -g pnpm
COPY frontend/package.json frontend/pnpm-lock.yaml ./