- Created "My 2023 Coding Edition" post detailing projects and experiences in Rust and game development. - Added "My 2024 and 2025 roadmap" outlining goals and projects for the upcoming years. - Introduced "Python Tutorial - Introduction" and "Python - Variables" posts to teach Python programming basics. - Published "ROADMAP for 2023" to outline initial goals for the year. - Added "My Rust little adventure" post summarizing various Rust projects undertaken. - Released "Spanish Inquisition - 3.0.1 UPDATE" detailing the latest game update and features. - Added multiple background images in AVIF format for website use. - Removed unused SVG files to clean up the public directory.
32 lines
708 B
Docker
32 lines
708 B
Docker
FROM oven/bun:1 AS base
|
|
WORKDIR /app
|
|
|
|
FROM base AS install
|
|
RUN mkdir -p /temp/dev
|
|
COPY package.json bun.lock /temp/dev/
|
|
RUN cd /temp/dev && bun install --frozen-lockfile
|
|
|
|
RUN mkdir -p /temp/prod
|
|
COPY package.json bun.lock /temp/prod/
|
|
RUN cd /temp/prod && bun install --frozen-lockfile --production
|
|
|
|
FROM base AS prerelease
|
|
COPY --from=install /temp/dev/node_modules node_modules
|
|
COPY . .
|
|
|
|
ENV NODE_ENV=production
|
|
RUN bun run build
|
|
|
|
FROM base AS release
|
|
|
|
COPY --from=prerelease /app/public ./public
|
|
COPY --from=prerelease /app/.next ./.next
|
|
COPY --from=prerelease /app/node_modules ./node_modules
|
|
COPY --from=prerelease /app/package.json ./package.json
|
|
|
|
USER bun
|
|
EXPOSE 3000/tcp
|
|
|
|
CMD ["bun", "run", "start"]
|
|
|