diff --git a/Dockerfile b/Dockerfile index bb5d388..75de611 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,21 @@ # Creates a new cargo project, copies the Cargo.toml and Cargo.lock files to the new project, # builds the project, and then copies the built binary to a new image. +FROM node:20.14.0 as static + +COPY ./src/resources/static ./src/resources/static + +WORKDIR /spec + +COPY ./spec . +RUN npm install +RUN USER=root npm install -g @typespec/compiler && npm install -g @redocly/cli +RUN npm run tsp-compile && npm run redoc-build + FROM rust:1.79 as build +COPY --from=static ./src/resources/static ./static + RUN USER=root cargo new --bin simplify_truths WORKDIR /simplify_truths @@ -19,24 +32,11 @@ COPY ./src ./src RUN rm ./target/release/deps/simplify_truths* RUN cargo build --release -FROM node:20.14.0 as static - -COPY ./src/resources/static ./src/resources/static - -WORKDIR /spec - -COPY ./spec . -RUN npm install -RUN USER=root npm install -g @typespec/compiler && npm install -g @redocly/cli -RUN npm run tsp-compile && npm run redoc-build - FROM debian LABEL authors="Martin Berg Alstad" # copy the build artifact from the build stage COPY --from=build /simplify_truths/target/release/simplify_truths . -# copy the static html files -COPY --from=static ./src/resources/static ./static EXPOSE 8000 diff --git a/spec/dist/index.html b/spec/dist/index.html deleted file mode 100644 index d53a584..0000000 --- a/spec/dist/index.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - Simplify Truth Expressions - - - - - - - - - -

Simplify Truth Expressions (v2)

Download OpenAPI specification:Download

Simplify_simplify

path Parameters
exp
required
string
query Parameters
object (SimplifyOptions)

Responses

Response samples

Content type
application/json
{
  • "before": "string",
  • "after": "string",
  • "orderOfOperations": [ ],
  • "expression": {
    }
}
- - - -