> For the complete documentation index, see [llms.txt](https://docs.zenprotocol.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zenprotocol.com/apps/oracle/deploy/docker.md).

# Docker

#### Docker File

```
FROM mono

ENV zen_path=""
ENV zen_wallet_password=""
ENV zen_node_uri=""
ENV oracle_api=""
ENV mongo_connection=""

EXPOSE 5050

RUN apt-get update && apt-get install -y apt-utils procps iptables git
RUN mkdir services

WORKDIR services

RUN git clone https://gitlab.com/zenprotocol/zen-oracle.git
WORKDIR zen-oracle
RUN ./paket restore
RUN msbuild src/zen-oracle.sln /p:Configuration=Release -m
```
