Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.88-slim as builder
FROM rust:1.90-slim AS builder
WORKDIR /whatwg/html-build
COPY Cargo.lock Cargo.toml ./
COPY src ./src/
Expand All @@ -13,11 +13,11 @@ COPY --from=builder /usr/local/cargo/bin/html-build /bin/html-build

COPY --from=ghcr.io/whatwg/wattsi:latest /whatwg/wattsi/bin/wattsi /bin/wattsi

ENV PIPX_HOME /opt/pipx
ENV PIPX_BIN_DIR /usr/bin
ENV PIPX_HOME=/opt/pipx
ENV PIPX_BIN_DIR=/usr/bin
RUN pipx install bs-highlighter

COPY . /whatwg/html-build/

ENV SKIP_BUILD_UPDATE_CHECK true
ENV SKIP_BUILD_UPDATE_CHECK=true
ENTRYPOINT ["bash", "/whatwg/html-build/build.sh"]
6 changes: 3 additions & 3 deletions ci-build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Dockerfile is just used to run on Travis CI in an environment that can easily and repeatedly
# install our build dependencies.
FROM rust:1.88-slim as builder
FROM rust:1.90-slim AS builder
WORKDIR /whatwg/html-build
COPY Cargo.lock Cargo.toml ./
COPY src ./src/
Expand All @@ -27,8 +27,8 @@ COPY --from=builder /usr/local/cargo/bin/html-build /bin/html-build

COPY --from=ghcr.io/whatwg/wattsi:latest /whatwg/wattsi/bin/wattsi /bin/wattsi

ENV PIPX_HOME /opt/pipx
ENV PIPX_BIN_DIR /usr/bin
ENV PIPX_HOME=/opt/pipx
ENV PIPX_BIN_DIR=/usr/bin
RUN pipx install bs-highlighter

# The DockerHub container for the validator only contains the server version, so we get the .jar
Expand Down
Loading