-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44d974d
commit 8c5111c
Showing
4 changed files
with
19 additions
and
58 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This Dockerfile can be used to test and build govips | ||
|
||
FROM ubuntu:23.10 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Enable deb-src APT sources and get build tools | ||
RUN sed -e '/^#\sdeb-src /s/^# *//;t;d' "/etc/apt/sources.list" \ | ||
>> "/etc/apt/sources.list.d/ubuntu-sources.list" | ||
RUN apt-get update | ||
RUN apt-get -y --no-install-recommends install \ | ||
build-essential git golang | ||
RUN apt-get -y --no-install-recommends install ca-certificates | ||
RUN apt-get -y install --no-install-recommends libvips-dev | ||
RUN mkdir -p ~/go/src/github.com/davidbyttow | ||
RUN cd ~/go/src/github.com/davidbyttow && git clone -v https://github.com/davidbyttow/govips.git |