aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 413fe422d482923f4bc33252164ec578882ff688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:1.87 AS build

RUN cargo install --locked trunk@0.21.14
RUN rustup target add wasm32-unknown-unknown

WORKDIR /usr/src/ffxiv-uptime
COPY . .

RUN trunk build

FROM nginx:latest

COPY --from=build /usr/src/ffxiv-uptime/dist/* /usr/share/nginx/html