Skip to content

Commit

Permalink
chore: remove unnecessary things
Browse files Browse the repository at this point in the history
  • Loading branch information
harrytran998 committed May 9, 2024
1 parent f77582b commit 6eaae7c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 107 deletions.
1 change: 0 additions & 1 deletion apps/web/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
node_modules
*.log
.output
.nuxt
#.env # Not ignoring this file because it can contain build-related settings.
.DS_Store
.vercel
7 changes: 2 additions & 5 deletions apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/node:18-alpine AS builder
FROM docker.io/library/node:20-alpine AS builder

# Prepare work directory
WORKDIR /techmely/web
Expand All @@ -18,7 +18,7 @@ RUN bun install
# Build
RUN bun run build

FROM gcr.io/distroless/nodejs:18 AS runner
FROM gcr.io/distroless/nodejs:20 AS runner

ARG UID=911
ARG GID=911
Expand All @@ -38,9 +38,6 @@ EXPOSE 2023/tcp

ENV PORT=2023

# Specify container only environment variables ( can be overwritten by runtime env )
ENV NUXT_STORAGE_FS_BASE='/techmely/web/data'

# Persistent storage data
VOLUME [ "/techmely/web/data" ]

Expand Down
101 changes: 0 additions & 101 deletions apps/web/shared/helpers/seo.ts

This file was deleted.

0 comments on commit 6eaae7c

Please sign in to comment.