Skip to content

Commit 929693d

Browse files
committed
remove .deb files after install, update README
1 parent 04536f0 commit 929693d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
2323
ARG TARGETPLATFORM
2424
ARG VERSION=$VERSION
2525

26-
COPY $VERSION/$TARGETPLATFORM/*.deb /deb/
26+
COPY $VERSION/$TARGETPLATFORM/*.deb /tmp/deb/
2727

28-
RUN echo "installing from $TARGETPLATFORM"; dpkg -i /deb/*.deb;
28+
RUN echo "installing from $TARGETPLATFORM"; dpkg -i /tmp/deb/*.deb; rm -rf /tmp/deb/
2929

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This repository contains the browser .deb files as well as a Dockerfile for platform-specific browser image for Browsertrix Crawler, based on Ubuntu 22.04.
44

5-
The build uses Google Chrome for AMD64 builds and Chromium builds for ARM64
5+
The build uses Google Chrome for AMD64 builds and Chromium builds for ARM64.
66

77
The `.deb` files are placed in platform-specific directories, `<VERSION>/linux/amd64` and `<VERSION>/linux/arm64` to support
88
builds for those platform.
@@ -11,7 +11,7 @@ The CI is also setup to build the image and push on release.
1111

1212
This image can be accessed from `webrecorder/browsertrix-browser-base:<VERSION>`.
1313

14-
See `build.sh` for how to build this image locally.
14+
See `build.sh` for how to build this image locally using `docker buildx`.
1515

1616
The releases correspond to a new version of Chrome/Chromium, and current latest release is: **101**.
1717

0 commit comments

Comments
 (0)