Skip to content

Instantly share code, notes, and snippets.

@SlavenIvanov
SlavenIvanov / Dockerfile
Created May 7, 2024 13:53
SvelteKit Dockerfile
# Step 1: Build the application
FROM node:20-alpine AS builder
# Set the working directory in the container
WORKDIR /app
# Copy all the application files to the container
COPY . /app
# Run your build process