Compare commits

..

No commits in common. "fa8f5d71dfaf8a6cb45fdf40c4f165514b8b2270" and "7bf4c5eb22598a424fafad383591a98cef0c62f6" have entirely different histories.

4 changed files with 0 additions and 54 deletions

View File

@ -1 +0,0 @@
target

View File

@ -1,14 +0,0 @@
FROM rust
FROM rust AS deps
RUN apt-get update && apt-get install -y lld gfortran build-essential cmake ninja-build libaec-dev libclang-dev
RUN git clone https://github.com/ecmwf/eccodes && cd eccodes && mkdir build && cd build && cmake .. -DENABLE_PNG=On -G Ninja && ninja && ctest && ninja install
FROM deps AS build
COPY . .
RUN RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build --release
EXPOSE 8080/tcp
ENTRYPOINT ["./target/release/wxbox-tiler"]

View File

@ -1,16 +0,0 @@
node_modules
Dockerfile*
docker-compose*
.dockerignore
.git
.gitignore
README.md
LICENSE
.vscode
Makefile
helm-charts
.env
.editorconfig
.idea
cogerage*
target*

View File

@ -1,23 +0,0 @@
FROM oven/bun:1 AS base
WORKDIR /usr/src/app
FROM base AS install
RUN mkdir -p /tmp/dev
COPY package.json bun.lockb /tmp/dev
RUN cd /tmp/dev && bun install --frozen-lockfile
RUN mkdir -p /tmp/prod
COPY package.json bun.lockb /tmp/prod
RUN cd /tmp/prod && bun install --frozen-lockfile --production
FROM base AS release
COPY --from=install /tmp/dev/node_modules node_modules
COPY . .
ENV NODE_ENV=production
RUN bun test
RUN bun run build
USER bun
EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "--bun", "run", "./build" ]