diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-02-06 22:56:25 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-02-06 22:56:25 +0200 |
| commit | 63b35e0fd280dc6c4e654458a1e381e9d9dc221b (patch) | |
| tree | 5d91e443cff2af0eeed8f063ee0816439968d045 /Dockerfile | |
| parent | 55df6b10013dc72bc2f8f46103eb984f0991431b (diff) | |
Add runner api prod URL and undockerize
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 5e53b29..0000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM node:16-alpine AS build - -WORKDIR /app -COPY package-lock.json package.json ./ -RUN npm ci --only-prod -COPY vite.config.ts tsconfig.json index.html .env.production ./ -COPY src ./src -RUN npm run build - -FROM nginx:alpine AS serve - -RUN apk add --no-cache bash -COPY --from=build /app/dist /usr/share/nginx/html -COPY prod_bootstrap.sh / -CMD ["bash", "/prod_bootstrap.sh", "/usr/share/nginx/html"] |
