Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: set up WebID server #538

Merged
merged 10 commits into from
Dec 20, 2021
4 changes: 3 additions & 1 deletion packages/solid-crs-webid/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ RUN apk update && apk upgrade && \
ENV BASE_URL=http://localhost
ENV PORT=80
ENV CONFIG=config/file.json
ENV ENVIRONMENT=test

# Create app directory
RUN mkdir -p /community-server
Expand All @@ -23,7 +24,8 @@ RUN npm install --unsafe-perm
COPY . /community-server

# Copy initial data
# TODO add .acl to root for proxy access
COPY ./data/$ENVIRONMENT/ /data
COPY ./config/ /config
lem-onade marked this conversation as resolved.
Show resolved Hide resolved

# Expose ports.
EXPOSE 80
Expand Down