Skip to content

Commit 87dffbe

Browse files
authored
Merge pull request #26 from carolynvs/fix-build
Remove unnecessary dockerfile lines
2 parents 932f81e + 35401d2 commit 87dffbe

File tree

2 files changed

+5
-26
lines changed

2 files changed

+5
-26
lines changed

pkg/docker/build.go

+3-9
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,13 @@ import (
99

1010
// This is an example. Replace the following with whatever steps are needed to
1111
// install required components into
12-
const dockerfileLines = `FROM debian:stretch
13-
14-
ARG BUNDLE_DIR
15-
RUN apt-get update && apt-get install -y curl ca-certificates
16-
17-
ARG DOCKER_VERSION=%s
18-
RUN curl -o docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
12+
const dockerfileLines = `ARG DOCKER_VERSION=%s
13+
RUN apt-get update && apt-get install -y curl && \
14+
curl -o docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
1915
tar -xvf docker.tgz && \
2016
mv docker/docker /usr/bin/docker && \
2117
chmod +x /usr/bin/docker && \
2218
rm docker.tgz
23-
24-
COPY . $BUNDLE_DIR
2519
`
2620

2721
// BuildInput represents stdin passed to the mixin for the build command.

pkg/docker/build_test.go

+2-17
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,13 @@ import (
1010
"github.com/stretchr/testify/require"
1111
)
1212

13-
const buildOutputTemplate = `FROM debian:stretch
14-
15-
ARG BUNDLE_DIR
16-
RUN apt-get update && apt-get install -y curl ca-certificates
17-
18-
ARG DOCKER_VERSION=%s
19-
RUN curl -o docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
20-
tar -xvf docker.tgz && \
21-
mv docker/docker /usr/bin/docker && \
22-
chmod +x /usr/bin/docker && \
23-
rm docker.tgz
24-
25-
COPY . $BUNDLE_DIR
26-
`
27-
2813
func TestMixin_Build(t *testing.T) {
2914
t.Run("build with the default Docker version", func(t *testing.T) {
3015
m := NewTestMixin(t)
3116
err := m.Build()
3217
require.NoError(t, err)
3318

34-
wantOutput := fmt.Sprintf(buildOutputTemplate, "19.03.8")
19+
wantOutput := fmt.Sprintf(dockerfileLines, "19.03.8")
3520

3621
gotOutput := m.TestContext.GetOutput()
3722
assert.Equal(t, wantOutput, gotOutput)
@@ -46,7 +31,7 @@ func TestMixin_Build(t *testing.T) {
4631
err = m.Build()
4732
require.NoError(t, err)
4833

49-
wantOutput := fmt.Sprintf(buildOutputTemplate, "19.03.12")
34+
wantOutput := fmt.Sprintf(dockerfileLines, "19.03.12")
5035

5136
gotOutput := m.TestContext.GetOutput()
5237
assert.Equal(t, wantOutput, gotOutput)

0 commit comments

Comments
 (0)