Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/likeandscribe/unravel into …
Browse files Browse the repository at this point in the history
…did-history
  • Loading branch information
tom-sherman committed Aug 12, 2024
2 parents c03878b + 7b1df95 commit acd3b4e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 82 deletions.
6 changes: 3 additions & 3 deletions packages-rs/drainpipe/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM rust:1.78-alpine as builder
FROM rust:1.78-alpine AS builder

RUN apk add libressl-dev musl-dev sqlite-dev

WORKDIR /usr/src/drainpipe
WORKDIR /usr/src/unravel
COPY . .
# TODO: Figure out how to cache compilation artifacts and maybe split fetching into a different layer
RUN --mount=type=cache,target=/usr/local/cargo/registry \
cargo build --release --package drainpipe

FROM alpine:3.14
COPY --from=builder /usr/src/drainpipe/target/release/drainpipe /
COPY --from=builder /usr/src/unravel/target/release/drainpipe /

ENV DATABASE_URL="/drainpipedata/drainpipe.db"
ENV FRONTPAGE_CONSUMER_URL="https://frontpage.fyi/api/receive_hook"
Expand Down
2 changes: 1 addition & 1 deletion packages/frontpage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601",
"babel-plugin-react-compiler": "0.0.0-experimental-334f00b-20240725",
"drizzle-kit": "^0.22.7",
"eslint": "^8",
"eslint-config-next": "15.0.0-rc.0",
Expand Down
98 changes: 20 additions & 78 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit acd3b4e

Please sign in to comment.