Fix file path, slim astro image
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
3wc 2024-05-18 00:34:55 -03:00
parent 058c152320
commit d42b083b71
2 changed files with 13 additions and 14 deletions

View File

@ -61,9 +61,8 @@ steps:
environment:
PAYLOAD_URL: "https://admin.paystro.swarm-demo.autonomic.zone"
commands:
- ls /
- cd astro
- mv /build/node_modules .
- mv /base/node_modules .
- yarn build
- name: copy built content to stack
image: git.coopcloud.tech/coop-cloud/docker-cp-deploy:latest

View File

@ -2,15 +2,15 @@ FROM node:lts-alpine as base
WORKDIR /base
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
FROM base AS dev
ENV NODE_ENV=development
EXPOSE 3000
CMD ["yarn","dev"]
FROM base AS build
ENV NODE_ENV=production
# WORKDIR /build
# COPY --from=base /base .
ADD "https://random-uuid.deno.dev" skipcache
# COPY . .
#
# FROM base AS dev
# ENV NODE_ENV=development
# EXPOSE 3000
# CMD ["yarn","dev"]
#
# FROM base AS build
# ENV NODE_ENV=production
# # WORKDIR /build
# # COPY --from=base /base .
# ADD "https://random-uuid.deno.dev" skipcache