mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-25 14:42:26 +01:00
Add basic Dockerfile syntax highlighting test files
This commit is contained in:
19
tests/syntax-tests/source/Dockerfile/Dockerfile
Normal file
19
tests/syntax-tests/source/Dockerfile/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
ARG architecture=amd64
|
||||
FROM $architecture/centos:7
|
||||
LABEL com.example.version="0.2.1-beta"
|
||||
ARG architecture
|
||||
|
||||
ENV INTERESTING_PATH /usr/bin/interesting-software
|
||||
|
||||
|
||||
COPY entrypoint.sh /usr/bin/entrypoint.sh
|
||||
|
||||
RUN if [ "$architecture" = "i386" ]; then echo "Building i386 docker image" && \
|
||||
linux32 yum update -y && linux32 yum install -y mysql ; \
|
||||
else yum update -y && yum install -y mysql
|
||||
|
||||
EXPOSE 80/tcp
|
||||
|
||||
VOLUME [/var/lib/mysql/data]
|
||||
|
||||
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
|
Reference in New Issue
Block a user