Skip to content

Instantly share code, notes, and snippets.

View Nawaytes's full-sized avatar
💔
i love anime

Galih Setyawan Nawaytes

💔
i love anime
View GitHub Profile
@Nawaytes
Nawaytes / start.sh
Created July 28, 2023 04:13
Script sh
yarn start
@Nawaytes
Nawaytes / .dockerignore
Created July 27, 2023 09:47
.dockerignore next js
Dockerfile
.dockerignore
node_modules
npm-debug.log
README.md
.next
.git
@Nawaytes
Nawaytes / Dockerfile
Created July 27, 2023 09:18
Dockerfile simple nextjs
FROM node:16.13.1-alpine
WORKDIR /app
COPY yarn.lock ./
COPY package.json ./
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
CMD ["yarn", "start"]
@Nawaytes
Nawaytes / Dockerfile
Last active July 27, 2023 08:48
Dockerfile for Next.JS
FROM node:16.13.1-alpine AS build-stage
WORKDIR /app
COPY yarn.lock ./
COPY package.json ./
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
FROM node:16.13.1-alpine AS final-stage
WORKDIR /app