Mango/Dockerfile

17 lines
250 B
Docker
Raw Normal View History

2020-04-07 12:37:23 +00:00
FROM crystallang/crystal:0.34.0-alpine AS builder
2020-02-17 17:36:11 +00:00
2020-02-17 21:02:20 +00:00
WORKDIR /Mango
COPY . .
COPY package*.json .
2020-03-19 18:16:48 +00:00
RUN apk add --no-cache yarn yaml sqlite-static \
2020-03-19 05:00:11 +00:00
&& make static
FROM library/alpine
WORKDIR /
2020-02-17 21:02:20 +00:00
COPY --from=builder /Mango/mango .
2020-02-17 21:02:20 +00:00
CMD ["./mango"]