Skip to content

Instantly share code, notes, and snippets.

View MoinJulian's full-sized avatar
RealGolf

Julian Hammer MoinJulian

RealGolf
View GitHub Profile
@MoinJulian
MoinJulian / DockerfileForSvelteKit.md
Created February 15, 2024 21:58 — forked from aradalvand/DockerfileForSvelteKit.md
Dockerfile and .dockerignore for SvelteKit:

*This Dockerfile is intended for SvelteKit applications that use adapter-node. So, the Dockerfile below assumes that you have already installed and configured the adapter.

Dockerfile:

FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json .
RUN npm ci
COPY . .
RUN npm run build