# Anatomy of a Dockerfile - `FROM 1password/op:2` specifies a base image the container should use - `ENV OP_CONNECT_HOST=http://op-connect-api-local:8080` - `USER root` or `USER uid:gid` will specify the current user - `RUN apt-get update; apt-get install -y curl` - `COPY entrypoint.sh /home/opuser/entrypoint.sh` - `WORKDIR /home/opuser/` - `ENTRYPOINT ["/home/opuser/entrypoint.sh"]` - `CMD node index.js`