first commit
This commit is contained in:
13
frontend/Dockerfile
Normal file
13
frontend/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM node:18-alpine AS build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Frontend doesn't need a build step for this simple setup
|
||||
COPY . .
|
||||
|
||||
# Serve with a simple HTTP server
|
||||
RUN npm install -g http-server
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["http-server", ".", "-p", "3000", "-c-1"]
|
||||
Reference in New Issue
Block a user