Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /go/src/github.com/mendersoftware/inventory
ADD ./ .
RUN CGO_ENABLED=0 GOARCH=amd64 go build -o inventory .

FROM alpine:3.14.0
FROM alpine:3.17.1
EXPOSE 8080
RUN mkdir /etc/inventory
ENTRYPOINT ["/usr/bin/inventory", "--config", "/etc/inventory/config.yaml"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.acceptance-testing
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY . /go/src/github.com/mendersoftware/inventory
RUN cd /go/src/github.com/mendersoftware/inventory && \
env CGO_ENABLED=0 go test -c -o inventory-test -coverpkg $(go list ./... | grep -v vendor | grep -v mocks | grep -v test | tr '\n' ,)

FROM alpine:3.14.0
FROM alpine:3.17.1

EXPOSE 8080
RUN mkdir /tests
Expand Down