DomainRedirect/dockerfile

13 lines
186 B
Plaintext
Raw Normal View History

2024-02-07 14:45:18 +00:00
# Build frontend
FROM oven/bun:1.0.25-alpine as frontend
WORKDIR /app/
COPY ./ ./
# Expose port
EXPOSE 8080
# Start the app
ENV NODE_ENV=production
CMD [ "bun", "run", "./index.js" ]