forked from Azure/custom-script-extension-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.Dockerfile
24 lines (20 loc) · 876 Bytes
/
test.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM debian:jessie
RUN apt-get -qqy update && \
apt-get -qqy install jq openssl ca-certificates && \
apt-get -qqy clean && \
rm -rf /var/lib/apt/lists/*
# Create the directories and files that need to be present
RUN mkdir -p /var/lib/waagent && \
mkdir -p /var/lib/waagent/Extension/config && \
touch /var/lib/waagent/Extension/config/0.settings && \
mkdir -p /var/lib/waagent/Extension/status && \
mkdir -p /var/log/azure/Extension/VE.RS.ION
# Copy the test environment
WORKDIR /var/lib/waagent
COPY integration-test/env/ .
RUN ln -s /var/lib/waagent/fake-waagent /sbin/fake-waagent && \
ln -s /var/lib/waagent/wait-for-enable /sbin/wait-for-enable
# Copy the handler files
COPY misc/HandlerManifest.json ./Extension/
COPY misc/custom-script-shim ./Extension/bin/
COPY bin/custom-script-extension ./Extension/bin/