FROM node:latest

ENV API_KEY=sk-ant-1234567890abcdef1234567890
ENV LANG=en_US.UTF-8

RUN apt-get update && apt-get install -y curl wget

RUN curl -sSL https://example.com/install.sh | sh

ADD https://example.com/payload.tar /opt/

USER root

EXPOSE 3000
