-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (19 loc) · 660 Bytes
/
Dockerfile
File metadata and controls
27 lines (19 loc) · 660 Bytes
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
# Minimal utility needed to generate parsers and distribute the
# gherking-language.json to all language implementations.
#
# See CONTRIBUTING.md
#
FROM mcr.microsoft.com/dotnet/sdk:9.0
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install --assume-yes \
make \
jq
WORKDIR /app
## Trigger first run experience by running arbitrary cmd to populate local package cache
RUN dotnet --list-sdks
# Install Berp (dotnet tool installs are user-global; not system global)
RUN dotnet tool install --global Berp --version 1.6.0 \
&& echo 'export PATH="$PATH:/root/.dotnet/tools"' >> ~/.bashrc
WORKDIR /app
CMD ["/bin/bash"]