diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..712c3e6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use Deno image +FROM denoland/deno:alpine + +# Set working directory +WORKDIR /app + +# Copy project files +COPY ./latosa-frontend/ . + +# Install Next.js dependencies +RUN deno task build + +# Expose the default Next.js port +EXPOSE 3000 + +# Start the Next.js app +CMD ["deno", "task", "start"]