-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDockerfile
31 lines (25 loc) · 1.08 KB
/
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
25
26
27
28
29
30
31
FROM ubuntu:focal
ARG VECTOR_RELEASE=0.26.0
ARG VECTOR_SHA256=82c501f130327c1a698daeb55edfaad21077d99417a95e81c7796ba2eb73cf92
# Install system dependencies
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
apache2-utils \
ca-certificates \
curl \
nginx \
supervisor \
&& rm -rf /var/lib/apt/lists/*
# Install Vector
RUN curl -Lo /tmp/vector.tar.gz https://github.com/vectordotdev/vector/releases/download/v${VECTOR_RELEASE}/vector-${VECTOR_RELEASE}-x86_64-unknown-linux-gnu.tar.gz && \
echo "${VECTOR_SHA256} /tmp/vector.tar.gz" | sha256sum -c && \
tar xf /tmp/vector.tar.gz -C /usr/local/bin --strip-components 3 ./vector-x86_64-unknown-linux-gnu/bin/vector && \
mkdir /var/lib/vector && \
rm /tmp/vector.tar.gz
# Copy the startup script
COPY src/start.sh /usr/local/bin/start-container
# Copy configuration files
COPY src/vector.toml /etc/vector/vector.toml
COPY src/nginx.conf /etc/nginx/nginx.conf
COPY src/supervisord.conf /etc/supervisor/supervisord.conf
EXPOSE 80
CMD ["/usr/local/bin/start-container"]