mirror of
https://github.com/sern-handler/automata
synced 2026-06-28 02:32:16 +00:00
13 lines
180 B
Docker
13 lines
180 B
Docker
FROM node:lts-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn
|
|
|
|
ENV SKIP_ENV_VALIDATION=true
|
|
ENV API_URL="http://api.railway.internal:4000"
|
|
RUN yarn build:frontend
|
|
|
|
CMD yarn start:frontend |