We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b54a3 commit ce99265Copy full SHA for ce99265
Dockerfile.build DockerfileDockerfile.build renamed to Dockerfile
@@ -1,4 +1,4 @@
1
-FROM buildkite/puppeteer:5.2.1
+FROM node:22-alpine
2
3
WORKDIR /src
4
@@ -16,3 +16,8 @@ RUN npm run test:ci
16
# Build Frontend
17
RUN npm run build
18
19
+# Expose the default vite port.
20
+EXPOSE 5173
21
+
22
+# Automatically start the server.
23
+ENTRYPOINT ["npm", "start"]
compose.yaml
@@ -0,0 +1,5 @@
+services:
+ mydraft:
+ build: .
+ ports:
5
+ - "8080:5173"
0 commit comments