mirror of
https://github.com/containers/skopeo.git
synced 2025-10-21 02:45:56 +00:00
Replace the occurrences of `github.com/projectatomic` with `github.com/containers` to ensure clean clones of the project are building, travis badges on the README work as expected and other minor things. Signed-off-by: Flavio Castelli <fcastelli@suse.com>
15 lines
263 B
Docker
15 lines
263 B
Docker
FROM ubuntu:17.10
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
golang \
|
|
btrfs-tools \
|
|
git-core \
|
|
libdevmapper-dev \
|
|
libgpgme11-dev \
|
|
go-md2man \
|
|
libglib2.0-dev \
|
|
libostree-dev
|
|
|
|
ENV GOPATH=/
|
|
WORKDIR /src/github.com/containers/skopeo
|