We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46956f commit dae0d84Copy full SHA for dae0d84
.github/workflows/main.yml
@@ -33,7 +33,7 @@ jobs:
33
- name: Setup Docker builder
34
uses: docker/setup-buildx-action@v3
35
- run: docker run --rm --privileged tonistiigi/binfmt --install all
36
- - name: Login to Docker Hub
+ - name: Login to Docker registry
37
uses: docker/login-action@v3
38
with:
39
registry: ${{ env.REGISTRY }}
Dockerfile
@@ -0,0 +1,10 @@
1
+FROM node:lts
2
+
3
+RUN yarn global add serve
4
+RUN mkdir /app
5
+COPY /build /app
6
+WORKDIR /app
7
8
+EXPOSE 5000
9
+ENV PORT="5000"
10
+CMD serve -s -n -l tcp://0.0.0.0:5000
0 commit comments